home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / security / crack_4.1-tar / Scripts / spotless < prev    next >
Encoding:
Text File  |  1992-06-25  |  554 b   |  24 lines

  1. #!/bin/sh
  2.  
  3. ###
  4. # This program is copyright Alec Muffett 1991, and is provided as part of
  5. # the Crack v4.0 Password Cracking package.  The author disclaims all
  6. # responsibility or liability with respect to it's usage or its effect
  7. # upon hardware or computer systems, and maintains copyright as set out in
  8. # the "LICENCE" document which accompanies distributions of Crack v4.0 and
  9. # upwards. So there...
  10. ###
  11.  
  12. echo "Are you sure that you want to do this ? (no)"
  13. read ans
  14.  
  15. case $ans in
  16.     [Yy]*)
  17.         make -f Scripts/crack.mf spotless
  18.         ;;
  19.     *)
  20.         ;;
  21. esac
  22.  
  23. exit 0
  24.